home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / Apple Game Sprockets / Examples / InputSprocketPPTest / ISpLQuitWindow.cp < prev    next >
Encoding:
Text File  |  1996-05-16  |  348 b   |  17 lines  |  [TEXT/CWIE]

  1. #include "ISpLQuitWindow.h"
  2. #include "ISpTestGlobals.h"
  3. #include <LApplication.h>
  4.  
  5. LQuitWindow::LQuitWindow(LStream *inStream) : LWindow(inStream)
  6. {
  7. }
  8.  
  9. LQuitWindow *LQuitWindow::CreateLQuitWindowStream(LStream *inStream)
  10. {
  11.     return (new LQuitWindow(inStream));
  12. }
  13.  
  14. void LQuitWindow::ClickInGoAway(const EventRecord &inMacEvent)
  15. {
  16.     gMyApp->DoQuit();
  17. }